Method: Integer#<=
- Defined in:
- numeric.c
#<=(real) ⇒ Boolean
Returns true
if the value of self
is less than or equal to
that of +other+:
1 <= 0 # => false
1 <= 1 # => true
1 <= 2 # => true
1 <= 0.5 # => false
1 <= Rational(1, 2) # => false
Raises an exception if the comparison cannot be made.
4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 |
# File 'numeric.c', line 4945
static VALUE
int_le(VALUE x, VALUE y)
{
if (FIXNUM_P(x)) {
return fix_le(x, y);
}
else if (RB_BIGNUM_TYPE_P(x)) {
return rb_big_le(x, y);
}
return Qnil;
}
|